dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OraclePackage Class / ExecuteProcedure Method / ExecuteProcedure(String,Type,Object[]) Method
The name of the stored procedure or function.
Determines whether to invoke a procedure or a function.
Parameters to be passed to the procedure as arguments.

ExecuteProcedure(String,Type,Object[]) Method
Executes stored procedure or function.
Syntax
'Declaration
 
Public Overloads Function ExecuteProcedure( _
   ByVal name As String, _
   ByVal resultType As Type, _
   ByVal ParamArray parameters() As Object _
) As Object
 

Parameters

name
The name of the stored procedure or function.
resultType
Determines whether to invoke a procedure or a function.
parameters
Parameters to be passed to the procedure as arguments.

Return Value

Return value of the stored function.
Remarks
If resultType is null, ExecuteProcedure method tries to execute a stored procedure; otherwise it invokes stored function.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also